home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / DBTOOLC.LZH / MS.ARC / README.MS < prev   
Text File  |  1986-10-17  |  2KB  |  50 lines

  1. This file contains instructions for using the Microsoft C compiler,
  2. version 3.0, to re-create DCT1.EXE.
  3.  
  4. The only files supplied on the disk are the source code files, and
  5. two library files: MS_CATCH.LIB and DCTMISC.LIB. The source files are
  6. in the \SOURCE directory, while the library files are contained in
  7. the \MS directory. All remaining library files must be recreated by
  8. recompiling the appropriate source code files, and then using a
  9. librarian compatible with your compiler to combine the object files
  10. into a library. The examples below assume you are using Microsoft's
  11. LIB.EXE for your librarian.
  12.  
  13. 1. Make DCT1.OBJ by recompiling DCT1.C:
  14.     msc /AL /I\ms\include /DLARGE /DMS dct1;
  15.  
  16. 2. Make DCT1.LIB as follows:
  17.     A. Recompile the source files:
  18.     msc /AL /I\ms\include /DLARGE /DMS dbarray;
  19.     msc /AL /I\ms\include /DLARGE /DMS dbstat;
  20.     msc /AL /I\ms\include /DLARGE /DMS dbfin;
  21.  
  22.     B. Make the library file DCT1.LIB:
  23.         Delete the file DCT1.LIB if it already exists.
  24.     Run LIB:
  25.         LIB
  26.         Library name: dct1
  27.         Library does not exist.  Create? y
  28.         Operations: dbarray+dbstat+dbfin
  29.         List file: 
  30.  
  31. 3. Make DCTSCRN.LIB as follows:
  32.     A. Recompile the source files:
  33.         msc /AL /I\ms\include /DLARGE /DMS dctmsg;
  34.         msc /AL /I\ms\include /DLARGE /DMS putwindo;
  35.         msc /AL /I\ms\include /DLARGE /DMS savwindo;
  36.         msc /AL /I\ms\include /DLARGE /DMS rstwindo;
  37.  
  38.     B. Make the library file dctscrn.lib:
  39.         Delete the file DCTSCRN.LIB if it already exists.
  40.     Run LIB:
  41.         LIB
  42.         Library name: dctscrn
  43.         Library does not exist.  Create? y
  44.         Operations: dctmsg+putwindo+savwindo+rstwindo
  45.         List file: 
  46.  
  47. 4. Make DCT1.EXE by linking all the files together:
  48.         set LIB=\ms\lib
  49.         link /STACK:8192 dct1,dct1,,ms_catch+dct1+dctscrn+dctmisc
  50.